home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / as2ps.h < prev    next >
C/C++ Source or Header  |  1999-03-31  |  2KB  |  43 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: as2ps.h 
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer 
  8. // File Creation Date: 12/17/1997  
  9. // Date Last Modified: 03/31/1999
  10. // ----------------------------------------------------------- // 
  11. // ---------- Include File Description and Details  ---------- // 
  12. // ----------------------------------------------------------- // 
  13. /*
  14. ASCII to PostScript converter program.  
  15.  
  16. Changes:
  17. ================================================================
  18. 03/31/1999: - Modified code to expand wildcard characters used
  19. in command-line arguments.
  20. Changed by: Doug Gaer
  21. */
  22. // ----------------------------------------------------------- //   
  23. #ifndef __ASPS_HPP__
  24. #define __ASPS_HPP__
  25.  
  26. #include "pscript.h"
  27.  
  28. // Postscript driver version number and program name
  29. const double ASPSVersionNumber = 1031.101;
  30. const char *ProgramName = "as2ps";
  31.  
  32. // AS2PS program functions
  33. void HelpMessage(const char *program_name, const double version_number);
  34. PostScriptDrv ProcessArgs(int argc, char *argv[]);
  35. int GenOutputFileName(char *extension);
  36. void DocumentSetup(PostScriptDrv &psdrv);
  37.  
  38. #endif  // __ASPS_HPP__ //
  39. // ----------------------------------------------------------- // 
  40. // ------------------------------- //
  41. // --------- End of File --------- //
  42. // ------------------------------- //
  43.